home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2005 March / Macworld CD March 2005 - Marathon Trilogy.iso / Shareware World / Text Processing / textbucket.dmg.sit / textbucket.dmg / Text Bucket / Text Bucket.app / Contents / Resources / MacroWindowController.h < prev   
Encoding:
Text File  |  2005-01-04  |  528 b   |  30 lines

  1. //
  2. //  MacroWindowController.h
  3. //  TextBucket
  4. //
  5. //  Created by Jim on 12/13/04.
  6. //  Copyright 2004 __MyCompanyName__. All rights reserved.
  7. //
  8.  
  9. #import <Cocoa/Cocoa.h>
  10.  
  11. @class TextBucket;
  12.  
  13. @interface MacroWindowController : NSWindowController {
  14.     TextBucket* bucket;
  15.     NSArray* macros;
  16.     NSMutableString* string;
  17.     
  18.     NSMutableArray* fields;
  19. }
  20.  
  21. -(void) setMacros:(NSArray*) macros;
  22. -(void) setString:(NSString*) string;
  23.  
  24. - (TextBucket*) bucket;
  25. - (void) setBucket:(TextBucket*) newBucket;
  26.  
  27. -(IBAction) closeWindow:(id) sender;
  28.  
  29. @end
  30.